home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / lang / PPCsmalltalk.lha / PPCSmallTalk / prelude / true.st < prev   
Text File  |  1986-10-19  |  433b  |  18 lines

  1. Class True :Boolean
  2. [
  3.         ifTrue: trueAlternativeBlock ifFalse: falseAlternativeBlock
  4.                 ^ trueAlternativeBlock value
  5.  
  6. !       ifFalse: falseAlternativeBlock ifTrue: trueAlternativeBlock
  7.                 ^ trueAlternativeBlock value
  8.  
  9. !       ifTrue: trueAlternativeBlock
  10.                 ^ trueAlternativeBlock value
  11.  
  12. !       ifFalse: falseAlternativeBlock
  13.                 ^ nil
  14.  
  15. |       not
  16.                 ^ false
  17. ]
  18.